home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / classic.jar / skin / classic / global / radio.css < prev    next >
Cascading Style Sheet File  |  2006-02-28  |  4KB  |  129 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Communicator client code, released
  15.  * March 31, 1998.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998-1999
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /* ===== radio.css ===================================================
  39.   == Styles used by the XUL radio element.
  40.   ======================================================================= */
  41.  
  42. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  43.  
  44. /* ::::: radio ::::: */
  45.  
  46. radio {
  47.   -moz-appearance: radio-container;
  48.   -moz-box-align: center;
  49.   margin: 2px 4px;
  50.   padding-top: 1px;
  51.   padding-bottom: 1px;
  52.   -moz-padding-start: 4px;
  53.   -moz-padding-end: 2px;
  54. }
  55.  
  56. .radio-label-box {
  57.   -moz-margin-start: 2px;
  58.   border: 1px solid transparent;
  59.   padding-top: 0px;
  60.   padding-bottom: 1px;
  61.   -moz-padding-start: 1px;
  62.   -moz-padding-end: 0px;
  63. }
  64.  
  65. .radio-icon {
  66.   -moz-margin-end: 2px;
  67. }
  68.  
  69. .radio-label {
  70.   margin: 0 !important;
  71. }
  72.  
  73. /* ..... focused state ..... */
  74.  
  75. radio[focused="true"] > .radio-label-box {
  76.   border: 1px dotted ThreeDDarkShadow;
  77. }
  78.  
  79. /* ..... disabled state ..... */
  80.  
  81. radio[disabled="true"] > .radio-check-box1 {
  82.   background-color: -moz-Dialog;
  83. }
  84.  
  85. radio[disabled="true"] {
  86.   color: GrayText !important;
  87. }
  88.  
  89. /* ::::: checkmark image ::::: */
  90.  
  91. .radio-check-box1 {
  92.   -moz-appearance: radio;
  93.   margin: 1px 0px;
  94.   border-top: 1px solid ThreeDShadow;
  95.   border-right: 1px solid ThreeDHighlight;
  96.   border-bottom: 1px solid ThreeDHighlight;
  97.   border-left: 1px solid ThreeDShadow;
  98.   -moz-border-radius: 50%;
  99.   width: 12px;
  100.   height: 12px;
  101.   background-color: -moz-Field;
  102. }
  103.  
  104. .radio-check-box2 {
  105.   border-top: 1px solid ThreeDDarkShadow;
  106.   border-right: 1px solid ThreeDLightShadow;
  107.   border-bottom: 1px solid ThreeDLightShadow;
  108.   border-left: 1px solid ThreeDDarkShadow;
  109.   -moz-border-radius: 50%;
  110.   padding: 2px;
  111.   width: 4px;
  112.   height: 4px;
  113.   list-style-image: none;
  114. }
  115.  
  116. radio:hover:active > .radio-check-box1 {
  117.   background-color: -moz-Dialog;
  118. }
  119.  
  120. /* ..... selected state ..... */
  121.  
  122. radio[selected="true"] > .radio-check-box1 > .radio-check-box2 {
  123.   list-style-image: url("chrome://global/skin/radio/radio-check.gif");
  124. }
  125.  
  126. radio[selected="true"][disabled="true"] > .radio-check-box1 > .radio-check-box2 {
  127.   list-style-image: url("chrome://global/skin/radio/radio-check-dis.gif") !important
  128. }
  129.